home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / pctj8404.arc / SEARCH1.BAS < prev    next >
BASIC Source File  |  1986-09-14  |  640b  |  25 lines

  1. '$$$$$$$$$$$$$$ 
  2. 'Subroutine 
  3. '$$$$$$$$$$$$$$ 
  4. '    This is the sequential search subroutine. 
  5. '    Input is the table in which to look up (ITABLE), the 
  6. '    number of entries in the table (NTABLE), and the 
  7. '    number whose index is to be found (JKEY).  Output 
  8. '    is the index (INDX) such that  
  9. '    TABLE(INDX) = JKEY 
  10. '    SEQUENTIAL SEARCH 
  11. 8000 rem Start. 
  12. REM CMP   cmp = 0 
  13.      for i. = 1 to ntable 
  14. REM CMP cmp = cmp + 1. 
  15.      if (itable(i.) = jkey) then indx = i.: return 
  16.      next i. 
  17.      return 
  18.